Better Iterm resetting
[betaflight.git] / docs / Board - CC3D.md
blobdf25059ff4c09448d9c6837f0b4e86c6798944cd
1 # Board - CC3D
3 The OpenPilot Copter Control 3D aka CC3D is a board more tuned to Acrobatic flying or GPS based
4 auto-piloting.  It only has one sensor, the MPU6000 SPI based Accelerometer/Gyro.
5 It also features a 16Mbit SPI based EEPROM chip.  It has 6 ports labeled as inputs (one pin each)
6 and 6 ports labeled as motor/servo outputs (3 pins each).
8 If issues are found with this board please report via the [github issue tracker](https://github.com/cleanflight/cleanflight/issues).
10 The board has a USB port directly connected to the processor.  Other boards like the Naze and Flip32
11 have an on-board USB to uart adapter which connect to the processor's serial port instead.
13 The board cannot currently be used for hexacopters/octocopters.
15 Tricopter & Airplane support is untested, please report success or failure if you try it. 
17 # Pinouts
19 The 8 pin RC_Input connector has the following pinouts when used in RX_PPM/RX_SERIAL mode
21 | Pin | Function  | Notes                            |
22 | --- | --------- | -------------------------------- |
23 | 1   | Ground    |                                  |
24 | 2   | +5V       |                                  |
25 | 3   | PPM Input | Enable `feature RX_PPM`          | 
26 | 4   | SoftSerial1 TX / Sonar trigger | |
27 | 5   | SoftSerial1 RX / Sonar Echo    | |
28 | 6   | Current   | Enable `feature CURRENT_METER`.  Connect to the output of a current sensor, 0v-3.3v input |
29 | 7   | Battery Voltage sensor | Enable `feature VBAT`. Connect to main battery using a voltage divider, 0v-3.3v input |
30 | 8   | RSSI      | Enable `feature RSSI_ADC`.  Connect to the output of a PWM-RSSI conditioner, 0v-3.3v input |
32 The 6 pin RC_Output connector has the following pinouts when used in RX_PPM/RX_SERIAL mode
34 | Pin | Function  | Notes |
35 | --- | ----------| ------|
36 | 1   | MOTOR 1   |       |
37 | 2   | MOTOR 2   |       |
38 | 3   | MOTOR 3   |       |
39 | 4   | MOTOR 4   |       |
40 | 5   | LED Strip |       |
41 | 6   | Buzzer    |       |
43 The 8 pin RC_Input connector has the following pinouts when used in RX_PARALLEL_PWM mode
45 | Pin | Function | Notes |
46 | --- | ---------| ------|
47 | 1   | Ground   |       |
48 | 2   | +5V      |       |
49 | 3   | Unused   |       | 
50 | 4   | CH1      |       |
51 | 5   | CH2      |       |
52 | 6   | CH3      |       |
53 | 7   | CH4/Battery Voltage sensor      | CH4 if battery voltage sensor is disabled |
54 | 8   | CH5/CH4  | CH4 if battery voltage monitor is enabled|
56 The 6 pin RC_Output connector has the following pinouts when used in RX_PARALLEL_PWM mode
58 | Pin | Function | Notes |
59 | --- | ---------| ------|
60 | 1   | MOTOR 1  |       |
61 | 2   | MOTOR 2  |       |
62 | 3   | MOTOR 3  |       |
63 | 4   | MOTOR 4  |       |
64 | 5   | Unused   |       |
65 | 6   | Unused   |       |
67 # Serial Ports
69 | Value | Identifier   | Board Markings | Notes                                     |
70 | ----- | ------------ | -------------- | ------------------------------------------|
71 | 1     | VCP          | USB PORT       |                                           |
72 | 2     | USART1       | MAIN PORT      | Connected to an MCU controllable inverter |
73 | 3     | USART3       | FLEX PORT      |                                           |
74 | 4     | SoftSerial   | RC connector   | Pins 4 and 5 (Tx and Rx respectively)     |
76 The SoftSerial port is not available when RX_PARALLEL_PWM is used. The transmission data rate is limited to 19200 baud.
78 To connect the GUI to the flight controller you just need a USB cable to use the Virtual Com Port (VCP) or you can use UART1 (Main Port).
80 CLI access is only available via the VCP by default.
82 # Main Port
84 The main port has MSP support enabled on it by default.
86 The main port is connected to an inverter which is automatically enabled as required.  For example, if the main port is used for SBus Serial RX then an external inverter is not required.
88 # Flex Port
90 The flex port will be enabled in I2C mode unless USART3 is used.  You can connect external I2C sensors and displays to this port.
92 You cannot use USART3 and I2C at the same time.
94 ## Flex port pinout
96 | Pin | Signal             | Notes                   |
97 | --- | ------------------ | ----------------------- |
98 | 1   | GND                |                         |
99 | 2   | VCC unregulated    |                         |
100 | 3   | I2C SCL / UART3 TX | 3.3v level              |
101 | 4   | I2C SDA / UART3 RX | 3.3v level (5v tolerant |
104 # Flashing
106 There are two primary ways to get Cleanflight onto a CC3D board.
108 * Single binary image mode - best mode if you don't want to use OpenPilot.
109 * OpenPilot Bootloader compatible image mode - best mode if you want to switch between OpenPilot and Cleanflight.
111 ## Single binary image mode.
113 The entire flash ram on the target processor is flashed with a single image.
115 The image can be flashed by using a USB to UART adapter connected to the main port when the CC3D is put into the STM32 bootloader mode, achieved by powering on the CC3D with the SBL/3.3v pads bridged.  
117 ## OpenPilot Bootloader compatible image mode.
119 The initial section of flash ram on the target process is flashed with a bootloader which can then run the code in the
120 remaining area of flash ram.
122 The OpenPilot bootloader code also allows the remaining section of flash to be reconfigured and re-flashed by the
123 OpenPilot Ground Station (GCS) via USB without requiring a USB to uart adapter.
125 The following features are not available:
126  * Display
127  * Sonar
129 # Restoring OpenPilot bootloader
131 If you have a JLink debugger, you can use JLinkExe to flash the open pilot bootloader.
133 1. Run JLinkExe `/Applications/SEGGER/JLink/JLinkExe`
134 2. `device STM32F103CB`
135 3. `r`
136 4. `h`
137 5. `loadbin opbl.bin, 0x08000000`
138 6. `q`
139 7. Re-plug CC3D.
141 Here's an example session:
144 $ /Applications/SEGGER/JLink/JLinkExe 
145 SEGGER J-Link Commander V4.90c ('?' for help)
146 Compiled Aug 29 2014 09:52:38
147 DLL version V4.90c, compiled Aug 29 2014 09:52:33
148 Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
149 Hardware: V7.00
150 S/N: -1 
151 Feature(s): RDI,FlashDL,FlashBP,JFlash,GDBFull 
152 VTarget = 3.300V
153 Info: Could not measure total IR len. TDO is constant high.
154 Info: Could not measure total IR len. TDO is constant high.
155 No devices found on JTAG chain. Trying to find device on SWD.
156 Info: Found SWD-DP with ID 0x1BA01477
157 Info: Found Cortex-M3 r1p1, Little endian.
158 Info: FPUnit: 6 code (BP) slots and 2 literal slots
159 Info: TPIU fitted.
160 Cortex-M3 identified.
161 Target interface speed: 100 kHz
162 J-Link>device STM32F103CB
163 Info: Device "STM32F103CB" selected (128 KB flash, 20 KB RAM).
164 Reconnecting to target...
165 Info: Found SWD-DP with ID 0x1BA01477
166 Info: Found SWD-DP with ID 0x1BA01477
167 Info: Found Cortex-M3 r1p1, Little endian.
168 Info: FPUnit: 6 code (BP) slots and 2 literal slots
169 Info: TPIU fitted.
170 J-Link>r
171 Reset delay: 0 ms
172 Reset type NORMAL: Resets core & peripherals via SYSRESETREQ & VECTRESET bit.
173 J-Link>h
174 PC = 0800010C, CycleCnt = 00000000
175 R0 = 0000000C, R1 = 0000003F, R2 = 00000000, R3 = 00000008
176 R4 = 00003000, R5 = 023ACEFC, R6 = 200000F0, R7 = 20000304
177 R8 = 023B92BC, R9 = 00000000, R10= ED691105, R11= F626177C
178 R12= 000F0000
179 SP(R13)= 20000934, MSP= 20000934, PSP= 20000934, R14(LR) = FFFFFFFF
180 XPSR = 01000000: APSR = nzcvq, EPSR = 01000000, IPSR = 000 (NoException)
181 CFBP = 00000000, CONTROL = 00, FAULTMASK = 00, BASEPRI = 00, PRIMASK = 00
182 J-Link>loadbin opbl.bin, 0x08000000
183 Downloading file [opbl.bin]...
184 WARNING: CPU is running at low speed (8004 kHz).
185 Info: J-Link: Flash download: Flash download into internal flash skipped. Flash contents already match
186 Info: J-Link: Flash download: Total time needed: 0.898s (Prepare: 0.709s, Compare: 0.128s, Erase: 0.000s, Program: 0.000s, Verify: 0.000s, Restore: 0.059s)
187 O.K.
188 J-Link>q